home *** CD-ROM | disk | FTP | other *** search
/ Logiciels PC 7 / logiciel pc 7.iso / Divers / Prog / Delphi / ZipManager / DISK1 / _SETUP.1 / options.pas < prev    next >
Pascal/Delphi Source File  |  1998-12-06  |  475b  |  30 lines

  1. unit options;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TOKRightDlg1 = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.     CheckBox1: TCheckBox;
  14.     CheckBox2: TCheckBox;
  15.     CheckBox3: TCheckBox;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   OKRightDlg1: TOKRightDlg1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.